LEVEL5 OBJECT - définition. Qu'est-ce que LEVEL5 OBJECT
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est LEVEL5 OBJECT - définition

PROGRAMMING LANGUAGE
Object-based; Object-based (programming); Object-based programming; Object-Based Languages; Object-based languages; Object based

LEVEL5 OBJECT      
From Information Builders. [What is it?]
object         
WIKIMEDIA DISAMBIGUATION PAGE
Object orientation; Objects; Oject; Object (disambiguation); Objecct; Event-driven object-orientation; Objects (disambiguation)
n.
1.
Thing, reality, particular, existence, fact, phenomenon, percept, thing perceived, external reality.
2.
Mark, aim, target, butt; goal, end, destination; recipient, correlate, or complement (of a conscious subject).
3.
End, aim, intent, intention, purpose, design, motive, use, view, drift, goal, final cause.
4.
(Gram.) Regimen, complement.
object         
WIKIMEDIA DISAMBIGUATION PAGE
Object orientation; Objects; Oject; Object (disambiguation); Objecct; Event-driven object-orientation; Objects (disambiguation)
I
n.
1) a material, physical object
2) a sex object
3) (grammar) a direct; indirect object
4) (misc.) an object of derision; an unidentified flying object (= UFO)
II
v.
1) to object strenuously, strongly, violently
2) (D; intr.) to object to (to object to new taxes)
3) (L) she objected that the accusation was based on hearsay

Wikipédia

Object-based language

The term object-based language may be used in a technical sense to describe any programming language that uses the idea of encapsulating state and operations inside objects. Object-based languages need not support inheritance or subtyping, but those that do are also termed object-oriented. Object-based languages that do not support inheritance or subtyping are usually not considered to be true object-oriented languages.

Examples of object-oriented languages, in rough chronological order, include Simula, Smalltalk, C++ (which object model is based on Simula's), Objective-C (which object model is based on Smalltalk's), Eiffel, Xojo (formerly REALbasic), Python, Ruby, Java, Visual Basic .NET, C#, and Fortran 2003. Examples of a language that is object-based, but not object-oriented are early versions of Ada, Visual Basic (VB), JavaScript, and Fortran 90. These languages all support the definition of an object as a data structure, but lack polymorphism and inheritance.

In practice, the term object-based is usually applied to those object-based languages that are not also object-oriented, although all object-oriented languages are also object-based, by definition. Instead, the terms object-based and object-oriented are normally used as mutually exclusive alternatives, rather than as categories that overlap.

Sometimes, the term object-based is applied to prototype-based programming languages, true object-oriented languages that lack classes, but in which objects instead inherit their code and data directly from other template objects. An example of a commonly used prototype-based scripting language is JavaScript.

Both object-based and object-oriented languages (whether class-based or prototype-based) may be statically type-checked. Statically checking prototype-based languages can be difficult, because these languages often allow objects to be dynamically extended with new behavior, and even to have their parent object (from which they inherit) changed, at runtime.